home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / string / strcat.c < prev    next >
C/C++ Source or Header  |  1989-03-22  |  1KB  |  53 lines

  1. /* 
  2.  * strcat.c --
  3.  *
  4.  *    Source code for the "strcat" library routine.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/string/RCS/strcat.c,v 1.2 89/03/22 16:06:35 rab Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <string.h>
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * strcat --
  26.  *
  27.  *    Copy one string (src) onto the end of another (dst).
  28.  *
  29.  * Results:
  30.  *    The return value is a pointer to the destination string, dst.
  31.  *
  32.  * Side effects:
  33.  *    None.
  34.  *
  35.  *----------------------------------------------------------------------
  36.  */
  37.  
  38. char *
  39. strcat(dst, src)
  40.     register char *src;        /* Place from which to copy. */
  41.     char *dst;            /* Destination string:  *srcPtr gets added
  42.                  * onto the end of this. */
  43. {
  44.     register char *copy = dst;
  45.  
  46.     do {
  47.     } while (*copy++ != 0);
  48.     copy -= 1;
  49.     do {
  50.     } while ((*copy++ = *src++) != 0);
  51.     return dst;
  52. }
  53.